home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{DAA0D7B7-6667-11D1-9A13-00C04FD8DC2E}#1.0#0"; "DPing.dll"
- Begin VB.Form Form1
- Caption = "DameWare Simple Ping Sample"
- ClientHeight = 2835
- ClientLeft = 240
- ClientTop = 720
- ClientWidth = 5730
- LinkTopic = "Form1"
- ScaleHeight = 2835
- ScaleWidth = 5730
- StartUpPosition = 2 'CenterScreen
- Begin VB.CommandButton Command1
- Caption = "Ping"
- Height = 375
- Left = 3360
- TabIndex = 1
- Top = 360
- Width = 1455
- End
- Begin VB.TextBox Text1
- Height = 375
- Left = 600
- TabIndex = 0
- Text = "yahoo.com"
- Top = 360
- Width = 2295
- End
- Begin DPINGLibCtl.DPingCtl DPingCtl1
- Height = 1680
- Left = 240
- TabIndex = 2
- Top = 960
- Width = 5280
- PacketSize = 32
- TTL = 60
- Timeout = 1000
- Continues = 0
- PingCount = 3
- HostName = ""
- ResolveAddress = 0
- IPAddress = ""
- UseWindow = 1
- ScrollBar = 1
- End
- Begin VB.Label Label1
- Caption = "Host Name or IP Address to ping"
- Height = 255
- Left = 600
- TabIndex = 3
- Top = 120
- Width = 2535
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- DPingCtl1.Ping Text1.Text
- End Sub
-